home *** CD-ROM | disk | FTP | other *** search
/ The Madness of Roland / MADNESS of Roland.iso / REXPAND2.BAT < prev    next >
DOS Batch File  |  1994-10-01  |  3KB  |  72 lines

  1. @echo off 
  2.  
  3. rem -------------------------------------------------------------------------
  4. rem  In case the Roland setup program fails for some reason, you can manually
  5. rem  install Roland by following the directions below:
  6. rem
  7. rem     1) Create a Roland directory on your hard disk.
  8. rem
  9. rem     2) Run REXPAND1.BAT from the Roland CD.  Type 
  10. rem        "REXPAND1 <destination directory>".  This will
  11. rem        expand compressed files into your Roland directory.
  12. rem
  13. rem     3) Run REXPAND2.BAT from the Roland CD.  Type
  14. rem        "REXPAND2 <path to your WINDOWS\SYSTEM dir>".  This will
  15. rem        expand compressed files to your WINDOWS\SYSTEM directory.     
  16. rem        (The files copied are VBRUN300.DLL and VER.DLL.  They will
  17. rem        only be copied if the files do not already exist).
  18. rem
  19. rem     4) Copy the ROLAND.INI file from the Roland CD into your
  20. rem        WINDOWS directory.  You may need to modify the CDROM_PATH
  21. rem        entry to point to your CD drive (1 = A:\, 2 = B:\, 3 = C:\,
  22. rem        4 = D:\, etc).
  23. rem
  24. rem     5) To make a program icon for Roland, create a new program item
  25. rem        from the File New menu.  Set the command line property for the
  26. rem        icon to "<path to Roland directory>\ROLAND.EXE".  Set the 
  27. rem        working directory property to "<path to Roland directory>".
  28. rem ------------------------------------------------------------------------
  29.  
  30. rem --- Catch command line errors.  Must type "REXPAND2 <dest>".
  31. if "%1"=="" goto help1         rem Did not enter destination  
  32. if not "%2"=="" goto help2     rem Entered both source and dest--   
  33.                                rem don't want source
  34.  
  35. rem --- if VBRUN300.DLL is not already in the Windows\System dir, put it there
  36. :Copy1
  37. if exist %1\VBRUN300.DLL goto NoCopy1
  38. EXPAND -r VBRUN300.DL_ %1 
  39. goto Copy2
  40.  
  41. rem --- if did not need to copy VBRUN300.DLL
  42. :NoCopy1
  43. echo.
  44. echo VBRUN300.DLL was not copied because it already exists.
  45.  
  46. rem --- if VER.DLL is not already in the Windows\System dir, put it there
  47. :Copy2
  48. if exist %1\VER.DLL goto NoCopy2
  49. EXPAND -r VER.DL_ %1
  50. goto quit
  51.  
  52. rem --- if did not need to copy VER.DLL
  53. :NoCopy2
  54. echo.
  55. echo VER.DLL was not copied because it already exists.
  56. echo.
  57. goto quit
  58.  
  59. rem --- help messages
  60. :help1
  61. echo.
  62. echo Please specify your Windows\System directory:  "REXPAND2 <WinSys dir>"
  63. echo.
  64. goto quit
  65.  
  66. :help2 
  67. echo.
  68. echo Make sure you are running REXPAND2 from the Roland CD:  "REXPAND2 <WinSys dir>"
  69. echo.
  70.  
  71. :quit
  72.